-
Notifications
You must be signed in to change notification settings - Fork 81
Fix spell check failures and typos #332
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest release of the codespell tool used for automated spell checking of the files of this project included an expansion of the misspelled words dictionary. This caused the spell checker to trigger on some content in the BearSSL library vendored in this project. These included both false and true positives. Although the former can be fixed by ignoring the specific word and the latter by fixing the typo, it doesn't really make sense to be checking these files which appear to be mostly copies of content maintained externally. For this reason, the best approach will be to exclude the files from the check entirely.
In the latest release of the codespell tool used for automated spell checking of the files of this project, the word "bu" was added to the codespell misspelled words dictionary as a misspelling of "by". This caused a false detection of a CBOR map label `bu` as a misspelling, resulting in a failing spell check result. Since the occurrence of this word is correct and intended in this project, the false positive is resolved by configuring codespell to ignore the problematic word.
Thanks @per1234 |
Memory usage change @ 292e1b1
Click for full report table
Click for full report CSV
|
aentinger
approved these changes
Sep 8, 2022
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
topic: documentation
Related to documentation for the project
topic: infrastructure
Related to project infrastructure
type: imperfection
Perceived defect in any part of project
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In the latest release of the codespell tool used for automated spell checking of the files of this project, the misspelled words dictionary was expanded. This resulted in several detections, both false positives and true positives.
The failing check is fixed here by configuring the tool to prevent the false positives and by fixing the misspelled words that produced the actionable true positives.
While I was at it, I performed a comprehensive review of all documentation content in the repository and fixed additional typos identified manually.